home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / complib / free_ivector.c < prev    next >
Encoding:
Text File  |  1990-01-26  |  127 b   |  11 lines

  1. /*
  2. ### free memory for a 1-d integer array ###
  3. */
  4.  
  5. void free_ivector(v,nl,nh)
  6. int *v;
  7. int nl,nh;
  8. {
  9.     free((char *) (v + nl));
  10. }
  11.